- /* sfosubsf.cpp by K.Tsuru */
- // function ID = 707
- /*************************************
- SFraction class
- It provides the substitution operator.
- *************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
- SFraction& SFraction::operator=(const SFraction& a){
- if(this != &a){
- num = a.num; den = a.den;
- reduceDone = a.reduceDone;
- }
- return *this;
- }
sfosubsf.cpp : last modifiled at 2008/03/09 17:47:07(386 bytes)
created at 2015/12/22 16:07:29
The creation time of this html file is 2016/09/13 19:56:38 (Tue Sep 13 19:56:38 2016).